home *** CD-ROM | disk | FTP | other *** search
- '
- ' DARKROOM 3/01/89 Howard MacOdrum
- ' Copyright 1990 by Antic Publishing, Inc.
- '
- path$=DIR$(0)+"\"
- RESERVE FRE(0)-16000
- rsconf|=15
- baud|=8
- flow|=0
- ucr|=&X10001000
- rsr%=-1
- tsr%=-1
- scr%=-1
- DIM x10cmnd|(28)
- ARRAYFILL x10cmnd|(),&HFF
- DIM unit_desc$(16,15)
- DIM hsuntab|(16,16) ! House unit table will contain 0 if unit off or 1-16 if on
- REM or during file analysis, step unit was turned on
- '
- anlmsg1$=" file errors found,|select video or|ready printer."
- anlmsg3$="Error code 1 = Unit(s) turned off but not on."
- anlmsg4$="Error code 2 = Unit(s) turned on but were on in ""Prev step""."
- anlmsg5$="Error code 3 = Unit left in ""ON"" status,"
- DIM onunit$(16)
- DIM dayhex|(6)
- DIM daystr$(6)
- DIM ansfil$(50,5) ! 50 errors- step,reason,prev on,house,units
- DIM x10reply|(1050)
- DIM househex|(16)
- DIM funct|(16)
- DIM upfld$(7)
- maxitems|=128
- noflds|=6 ! # fields 7 and they are: time,function,house,units,security,day & Desc
- DIM stpfil$(noflds|,maxitems|+1)
- FOR cy|=0 TO maxitems|+1
- FOR cx|=0 TO noflds%
- READ stpfil$(cx|,cy|)
- NEXT cx|
- RESTORE inaster
- NEXT cy|
- inaster:
- DATA ***,***,***,***,***,***,***
- RESTORE hexcodes
- FOR cx|=1 TO 16
- READ househex|(cx|)
- READ funct|(cx|)
- NEXT cx|
- funct|(0)=3
- hexcodes:
- DATA &h60,2,&He0,&H15,&h20,&h25,&hA0,&h35,&H10,&h45,&H90,&h55,&h50,&H65,&hd0,&h75
- DATA &H70,&h85,&Hf0,&h95,&h30,&Ha5,&hb0,&Hb5,&h00,&Hc5,&h80,&Hd5,&h40,&he5,&hc0,&hf5
- RESTORE daycode
- FOR cx|=0 TO 6
- READ dayhex|(cx|)
- READ daystr$(cx|)
- NEXT cx|
- daycode:
- DATA 64,Sunday,1,Monday,2,Tuesday,4,Wednesday,8,Thursday,16,Friday,32,Saturday
- DIM message%(3)
- mes_adr%=V:message%(0)
- ABSOLUTE evt&,mes_adr%
- ABSOLUTE tit&,mes_adr%+6
- ABSOLUTE obj&,mes_adr%+8
- ok%=RSRC_LOAD(path$+"DARKROOM.RSC")
- IF ok%=0
- ALERT 3,"Error loading DARKROOM.RSC",1," OK ",z|
- RESERVE FRE(0)+16000
- EDIT
- ENDIF
- '
- ' Start of RESOURCE FILE definitions, see note in Blurb.
- '
- ~RSRC_GADDR(0,0,menu_adr%)
- ~RSRC_GADDR(0,1,stp_scrl_adr%)
- scrl_f_det_line|=2
- scrl_l_det_line|=17
- scrl_up|=19
- scrl_down|=21
- scrl_sort|=22
- scrl_return|=23
- ~RSRC_GADDR(0,2,stp_updt_adr%) ! update step detail
- up_step|=1
- up_old|=4
- up_new|=5
- up_time|=6
- up_desc|=7
- up_off_func|=10
- up_on_func|=11
- up_l_func|=26
- up_f_house|=28
- up_l_house|=43
- up_f_unit|=46
- up_l_unit|=61
- up_sun_day|=64
- up_sat_day|=70
- up_norm|=73
- up_secr|=74
- up_insert|=75
- up_delete|=76
- up_d_units|=77
- up_adjust|=78
- ' up_return|=79
- ~RSRC_GADDR(0,3,adj_tim_adr%) ! adjust steps time
- adj_value|=3
- adj_plus|=5
- adj_minus|=6
- ' adj_exit|=7
- ~RSRC_GADDR(0,4,x10_base_adr%) ! Find and change base code
- x10_base_a|=4
- x10_base_p|=19
- ' x10_base_return|=20
- ~RSRC_GADDR(0,5,x10_clock_adr%) ! find and change x10 clock
- x10_clk_tim|=3
- x10_clk_sun|=8
- ~RSRC_GADDR(0,6,x10_direct_adr%) ! Direct commands
- x10_dir_hous_a|=3
- x10_dir_unit_1|=21
- x10_dir_unit_9|=29
- x10_dir_func_off|=40
- x10_dir_func_on|=41
- x10_dir_display_unit|=57
- x10_dir_execute|=58
- ' x10_dir_retrn|=59
- ~RSRC_GADDR(0,7,unit_desc_adr%) ! unit descriptions
- ud_house|=2
- ud_house_desc|=3
- ud_unit_desc1|=5
- ud_unit_desc16|=20
- ud_house_up|=23
- ud_house_prev|=24
- '
- '
- resolution|=XBIOS(4)
- IF resolution|<>2
- ALERT 3,"Sorry, DARKROOM runs in|high resolution",1," OK ",blob#
- GOSUB quit
- ELSE
- vlim%=399
- ry|=2
- ENDIF
- PBOX 0,0,639,vlim%
- PRINT AT(30,15);" Welcome to DARKROOM "
- ~MENU_BAR(menu_adr%,1)
- DO
- ~EVNT_MULTI(&X110000,0,0,0,0,0,0,0,0,0,0,0,0,0,mes_adr%,100,d%,d%,d%,d%,d%,d%)
- IF evt&=10
- one$=TRIM$(CHAR{OB_SPEC(menu_adr%,obj&)})
- TOPW #2
- FULLW #2
- CLEARW 2
- TITLEW #2,"DARKROOM Sub function - "+one$
- IF one$="About DARKROOM"
- GOSUB blurb
- ELSE IF one$="Load"
- GOSUB load_step_file
- ELSE IF one$="Save"
- GOSUB store_step_file
- ELSE IF one$="Update steps"
- GOSUB stp_scroll_det
- ELSE IF one$="Print steps"
- GOSUB print_steps
- ELSE IF one$="Update units"
- GOSUB update_unit_desc
- ELSE IF one$="Print units"
- GOSUB print_units
- ELSE IF one$="Analysis"
- GOSUB file_analysis
- ELSE IF one$="Quit"
- GOSUB quit
- ELSE IF one$="Run from file"
- GOSUB run_x10
- ELSE IF one$="File to X10"
- GOSUB file_to_x10
- ELSE IF one$="X10 to Printer"
- GOSUB x10_print
- ELSE IF one$="Base Code"
- GOSUB base_code
- ELSE IF one$="X10 Diagnostics"
- GOSUB diagnostic
- ELSE IF one$="Set X10 Clock"
- GOSUB set_x10_clock
- ELSE IF one$="Direct Commands"
- GOSUB direct_commands
- ENDIF
- CLOSEW 2
- evt&=0
- ~MENU_TNORMAL(menu_adr%,tit&,1)
- ENDIF
- LOOP
- PROCEDURE quit
- IF updat|=1
- m$="You are ending without saving|file for units or steps,|is that OK?"
- ALERT 3,m$,2,"Yes|No",z|
- IF z|=2
- GOTO qretrn
- ENDIF
- ENDIF
- GOSUB comend
- qretrn:
- RETURN
- PROCEDURE blurb
- CLEARW 2
- PRINT AT(5,2);"DARKROOM by Howard MacOdrum Copyright 1990 by Antic Publishing"
- PRINT AT(10,3);"This program makes use of the RESOURCE FILE generator"
- PRINT AT(5,4);"supplied with GFA BASIC version 3."
- PRINT AT(10,6);"The program reserves memory to load the created RESOURCE File and"
- PRINT AT(5,7);"and when the ""QUIT"" option of the FILE portion of the main menu is"
- PRINT AT(5,8);"used the memory is released. Therfore you should always end the"
- PRINT AT(5,9);"program in that fashion otherwise repeated usage will cause"
- PRINT AT(5,10);"you to run out of memory."
- PRINT AT(5,12);" Object numbers of the trees were obtained by using the ""RESOURCE ANALYZER"""
- PRINT AT(5,13);"program contained in ""Programming with GFA BASIC 3.0"" by"
- PRINT AT(5,14);"Gottfried P. Engels & Markus C. Gorgens and published by MICHTRON"
- PRINT AT(5,16);"If any changes are made to the Resource file using the RESOURCE FILE"
- PRINT AT(5,17);"generator new object numbers must be obtained and care must be"
- PRINT AT(5,18);"exercised that groupings of object #s is maintained. See individual"
- PRINT AT(5,19);"subroutines for usage of object no groupings."
- PRINT AT(15,21);" Press any key for the remainder of message."
- REPEAT
- UNTIL INKEY$<>""
- CLEARW 2
- PRINT AT(4,2);"The program creates/maintains a file that may be used in different"
- PRINT AT(2,3);"modes."
- PRINT AT(30,5);"NORMAL MODE"
- PRINT AT(4,6);"The file is stored in memory of the X10 POWERHOUSE module. The"
- PRINT AT(2,7);"X10 clock then controls when the steps will be acted on. When this"
- PRINT AT(2,8);"is being used seconds portion of the file are ignored since the"
- PRINT AT(2,9);"X10 only accepts hours and minutes."
- PRINT AT(30,11);"DIRECT MODE (Run from file)"
- PRINT AT(4,12);"ST clock is used to control the action of the steps. When this "
- PRINT AT(2,13);"mode,is used days of week and security class are ignored.This mode"
- PRINT AT(2,14);"is independent from any file that may be stored in X10 memory. Direct"
- PRINT AT(2,15);"commands are given and the ST must be on line during the whole cycle."
- PRINT AT(4,16);"Hours/mins/seconds are relative to when ""Run from file"" action is"
- PRINT AT(2,17);"is taken and have no relation to clock setting of ST."
- PRINT AT(15,19);"Press any key to return to main menu."
- REPEAT
- UNTIL INKEY$<>""
- RETURN
- PROCEDURE store_step_file
- itm|=1
- DO
- EXIT IF stpfil$(0,itm|)="***"
- INC itm|
- LOOP
- IF updat|=0
- ALERT 1,"File not changed or|created.",1,"RETURN",z|
- GOTO store_return
- ENDIF
- retry_store:
- FILESELECT "\*.DRK","",stp_file$
- IF stp_file$="" OR RIGHT$(stp_file$,1)="\"
- ALERT 1,"No File name is|being specified.",1,"RETRY|RETURN",z|
- IF z|=1
- GOTO retry_store
- ELSE
- GOTO store_return
- ENDIF
- ELSE
- z|=INSTR(stp_file$,".")
- IF z|=0
- stp_file$=stp_file$+".DRK"
- ELSE
- stp_file$=MID$(stp_file$,1,z|)+"DRK"
- ENDIF
- OPEN "O",#1,stp_file$
- STORE #1,unit_desc$(),272
- STORE #1,stpfil$(),itm|*(noflds|+1)
- CLOSE #1
- updat|=0
- ENDIF
- store_return:
- RETURN
- PROCEDURE load_step_file
- stp_file$=""
- FILESELECT "\*.DRK","",stp_file$
- IF stp_file$="" OR RIGHT$(stp_file$,1)="\"
- ALERT 1,"No DRK file| is being loaded!",1,"Cancel",z|
- ELSE IF NOT EXIST(stp_file$)
- ALERT 3,"DRK File not found!",1,"Cancel",z|
- ELSE
- OPEN "I",#1,stp_file$
- RECALL #1,unit_desc$(),272,nut%
- RECALL #1,stpfil$(),maxitems|*(noflds|+1),nitm%
- CLOSE #1
- FOR cy|=nitm%/(noflds|+1) TO maxitems|
- stpfil$(0,cy|)="***"
- NEXT cy|
- ENDIF
- RETURN
- PROCEDURE stp_scroll_det
- IF stpfil$(0,1)="***"
- ALERT 3,"No File loaded|start new|or return",1,"RETURN|NEW",z|
- IF z|=2
- stpitm|=1
- GOSUB stp_up_det
- ELSE
- GOTO scrl_ret
- ENDIF
- ENDIF
- dx%=1
- re_scroll:
- CLEARW 2
- GOSUB insert_detail
- GOSUB gem_draw(stp_scrl_adr%)
- IF ex_obj%=>scrl_f_det_line| AND ex_obj%<=scrl_l_det_line|
- stpitm|=dx%+(ex_obj%-scrl_f_det_line|)
- IF stpfil$(0,stpitm|)="***"
- dec_detail:
- DEC stpitm|
- IF stpfil$(0,stpitm|)<>"***"
- INC stpitm|
- GOTO act_on_detail
- ELSE
- GOTO dec_detail
- ENDIF
- ENDIF
- act_on_detail:
- GOSUB stp_up_det
- GOTO re_scroll
- ENDIF
- IF ex_obj%=scrl_up|
- dx%=dx%-16
- IF dx%<1
- dx%=1
- ENDIF
- GOSUB insert_detail
- GOTO re_scroll
- ENDIF
- IF ex_obj%=scrl_down|
- dx%=dx%+16
- IF dx%>maxitems| OR stpfil$(0,dx%-1)="***"
- dx%=dx%-16
- ENDIF
- GOSUB insert_detail
- GOTO re_scroll
- ENDIF
- IF ex_obj%=scrl_sort|
- itm|=1
- DO ! find length of file for sort
- EXIT IF stpfil$(0,itm|)="***" ! end of file
- INC itm|
- LOOP
- DEC itm|
- FOR cx|=1 TO itm|-1
- FOR cy|=1 TO itm|-cx|
- IF stpfil$(0,cy|)>stpfil$(0,cy|+1)
- FOR cz|=0 TO 6
- SWAP stpfil$(cz|,cy|),stpfil$(cz|,cy|+1)
- NEXT cz|
- ENDIF
- NEXT cy|
- NEXT cx|
- GOTO re_scroll
- ENDIF
- IF ex_obj%=scrl_return|
- cx|=1
- sav_tim$=stpfil$(0,cx|)
- DO
- EXIT IF stpfil$(0,cx|)="***"
- IF stpfil$(0,cx|)<sav_tim$
- seq_mesg$="Error detected:|step has earlier time|than step "
- MID$(seq_mesg$,23,3)=STR$(cx|)
- MID$(seq_mesg$,53,3)=STR$(cx|-1)
- ALERT 3,seq_mesg$,1,"RETURN",z|
- GOTO re_scroll
- ENDIF
- sav_tim$=stpfil$(0,cx|)
- INC cx|
- LOOP
- GOTO scrl_ret
- ENDIF
- scrl_ret:
- RETURN
- PROCEDURE insert_detail
- lin|=0
- FOR cx|=dx% TO dx%+15
- wkdlin$=SPACE$(68)
- IF stpfil$(0,cx|)<>"***"
- IF cx|<10
- MID$(wkdlin$,1,3)=" "+STR$(cx|)
- ELSE IF cx|<100
- MID$(wkdlin$,1,3)=" "+STR$(cx|)
- ELSE
- MID$(wkdlin$,1,3)=STR$(cx|)
- ENDIF
- MID$(wkdlin$,5,8)=MID$(stpfil$(0,cx|),1,2)+":"+MID$(stpfil$(0,cx|),3,2)+":"+MID$(stpfil$(0,cx|),5,2)
- IF stpfil$(1,cx|)="0"
- MID$(wkdlin$,14,4)="OFF "
- ELSE IF stpfil$(1,cx|)="1"
- MID$(wkdlin$,14,4)="ON "
- ELSE
- MID$(wkdlin$,14,4)="D-"+stpfil$(1,cx|)
- ENDIF
- MID$(wkdlin$,19,2)=stpfil$(2,cx|)+","
- MID$(wkdlin$,21,22)=stpfil$(3,cx|)
- MID$(wkdlin$,39,1)=stpfil$(4,cx|)
- MID$(wkdlin$,41,7)=stpfil$(5,cx|)
- MID$(wkdlin$,49,20)=stpfil$(6,cx|)
- ENDIF
- CHAR{{OB_SPEC(stp_scrl_adr%,scrl_f_det_line|+lin|)}}=wkdlin$
- INC lin|
- NEXT cx|
- RETURN
- PROCEDURE stp_up_det
- updat|=1
- after_alt:
- hit_unit|=0
- CLEARW 2
- '
- ' set all buttons off
- '
- OB_STATE(stp_updt_adr%,up_off_func|)=BCLR(OB_STATE(stp_updt_adr%,up_off_func|),0)
- FOR cx|=0 TO 1
- OB_STATE(stp_updt_adr%,up_old|+cx|)=BCLR(OB_STATE(stp_updt_adr%,up_old|+cx|),0)
- OB_STATE(stp_updt_adr%,up_norm|+cx|)=BCLR(OB_STATE(stp_updt_adr%,up_norm|+cx|),0)
- NEXT cx|
- FOR cx|=0 TO 6
- OB_STATE(stp_updt_adr%,up_sun_day|+cx|)=BCLR(OB_STATE(stp_updt_adr%,up_sun_day|+cx|),0)
- NEXT cx|
- FOR cx|=0 TO 15
- OB_STATE(stp_updt_adr%,up_on_func|+cx|)=BCLR(OB_STATE(stp_updt_adr%,up_on_func|+cx|),0)
- OB_STATE(stp_updt_adr%,up_f_house|+cx|)=BCLR(OB_STATE(stp_updt_adr%,up_f_house|+cx|),0)
- OB_STATE(stp_updt_adr%,up_f_unit|+cx|)=BCLR(OB_STATE(stp_updt_adr%,up_f_unit|+cx|),0)
- NEXT cx|
- '
- '
- IF stpfil$(0,stpitm|)="***"
- stpfil$(0,stpitm|)="000000" ! time
- stpfil$(1,stpitm|)="1" ! function on
- stpfil$(2,stpitm|)="A" ! house equals A
- stpfil$(3,stpitm|)="1---------------" ! unit equals 1
- stpfil$(4,stpitm|)="N" ! security equals Normal
- stpfil$(5,stpitm|)="S------" ! day equals sunday
- stpfil$(6,stpitm|)="____________________" ! Description
- OB_STATE(stp_updt_adr%,up_new|)=BSET(OB_STATE(stp_updt_adr%,up_new|),0)
- ELSE
- OB_STATE(stp_updt_adr%,up_old|)=BSET(OB_STATE(stp_updt_adr%,up_old|),0)
- ENDIF
- wrk_step$=STR$(stpitm|)
- IF LEN(wrk_step$)=1
- wrk_step$=" "+wrk_step$
- ELSE IF LEN(wrk_step$)=2
- wrk_step$=" "+wrk_step$
- ENDIF
- CHAR{{OB_SPEC(stp_updt_adr%,up_step|)}}=wrk_step$
- CHAR{{OB_SPEC(stp_updt_adr%,up_time|)}}=stpfil$(0,stpitm|)
- CHAR{{OB_SPEC(stp_updt_adr%,up_desc|)}}=stpfil$(6,stpitm|)
- IF stpfil$(4,stpitm|)="N"
- OB_STATE(stp_updt_adr%,up_norm|)=BSET(OB_STATE(stp_updt_adr%,up_norm|),0)
- ELSE
- OB_STATE(stp_updt_adr%,up_secr|)=BSET(OB_STATE(stp_updt_adr%,up_secr|),0)
- ENDIF
- FOR cx|=0 TO 6
- IF MID$(stpfil$(5,stpitm|),cx|+1,1)<>"-"
- OB_STATE(stp_updt_adr%,up_sun_day|+cx|)=BSET(OB_STATE(stp_updt_adr%,up_sun_day|+cx|),0)
- ENDIF
- NEXT cx|
- cx|=VAL(stpfil$(1,stpitm|))
- OB_STATE(stp_updt_adr%,up_off_func|+cx|)=BSET(OB_STATE(stp_updt_adr%,up_off_func|+cx|),0)
- cx|=ASC(stpfil$(2,stpitm|))-ASC("A")
- OB_STATE(stp_updt_adr%,up_f_house|+cx|)=BSET(OB_STATE(stp_updt_adr%,up_f_house|+cx|),0)
- FOR cx|=0 TO 15
- IF MID$(stpfil$(3,stpitm|),cx|+1,1)<>"-"
- OB_STATE(stp_updt_adr%,up_f_unit|+cx|)=BSET(OB_STATE(stp_updt_adr%,up_f_unit|+cx|),0)
- ENDIF
- NEXT cx|
- GOSUB gem_draw(stp_updt_adr%)
- '
- ' Store current selected data in file area
- '
- stpfil$(0,stpitm|)=CHAR{{OB_SPEC(stp_updt_adr%,up_time|)}}
- IF MID$(stpfil$(0,stpitm|),1,2)>"23" OR MID$(stpfil$(0,stpitm|),3,2)>"59" OR MID$(stpfil$(0,stpitm|),5,2)>"59"
- error1$="Hrs SB 0-23 min-sec 0-59"
- ELSE
- error1$=""
- ENDIF
- IF CHAR{{OB_SPEC(stp_updt_adr%,up_desc|)}}<>"____________________"
- stpfil$(6,stpitm|)=CHAR{{OB_SPEC(stp_updt_adr%,up_desc|)}}
- ELSE
- stpfil$(6,stpitm|)=""
- ENDIF
- IF BTST(OB_STATE(stp_updt_adr%,up_secr|),0)
- stpfil$(4,stpitm|)="Y"
- ELSE
- stpfil$(4,stpitm|)="N"
- ENDIF
- stpfil$(5,stpitm|)=""
- hit_day|=0
- FOR cx|=0 TO 6
- IF BTST(OB_STATE(stp_updt_adr%,up_sun_day|+cx|),0)
- hit_day|=1
- stpfil$(5,stpitm|)=stpfil$(5,stpitm|)+LEFT$(daystr$(cx|))
- ELSE
- stpfil$(5,stpitm|)=stpfil$(5,stpitm|)+"-"
- ENDIF
- NEXT cx|
- stpfil$(3,stpitm|)=""
- hit_unit|=0
- FOR cx|=0 TO 15
- IF BTST(OB_STATE(stp_updt_adr%,up_on_func|+cx|),0)
- stpfil$(1,stpitm|)=STR$(cx|+1)
- ENDIF
- IF BTST(OB_STATE(stp_updt_adr%,up_f_house|+cx|),0)
- stpfil$(2,stpitm|)=CHR$(ASC("A")+cx|)
- ENDIF
- IF BTST(OB_STATE(stp_updt_adr%,up_f_unit|+cx|),0)
- hit_unit|=1
- stpfil$(3,stpitm|)=stpfil$(3,stpitm|)+RIGHT$(STR$(cx|+1))
- ELSE
- stpfil$(3,stpitm|)=stpfil$(3,stpitm|)+"-"
- ENDIF
- NEXT cx|
- IF BTST(OB_STATE(stp_updt_adr%,up_off_func|),0)
- stpfil$(1,stpitm|)="0"
- ENDIF
- '
- IF LEN(error1$)>0 OR hit_unit|<>1 OR hit_day|<>1
- ermsg$="Error(s) in input:"
- IF LEN(error1$)>0
- ermsg$=ermsg$+"|"+error1$
- ENDIF
- IF hit_unit|<>1
- ermsg$=ermsg$+"|"+"Some unit must be selected"
- ENDIF
- IF hit_day|<>1
- ermsg$=ermsg$+"|"+"No day was selected"
- ENDIF
- ALERT 3,ermsg$,1,"RETURN",z|
- GOTO after_alt
- ENDIF
- '
- IF ex_obj%=up_insert|
- FOR cx|=maxitems| TO stpitm|+1 STEP -1
- FOR cy|=0 TO 6
- SWAP stpfil$(cy|,cx|-1),stpfil$(cy|,cx|)
- NEXT cy|
- NEXT cx|
- GOTO after_alt
- ENDIF
- '
- IF ex_obj%=up_delete|
- FOR cx|=stpitm| TO maxitems|
- EXIT IF stpfil$(0,cx|)="***"
- FOR cy|=0 TO 6
- stpfil$(cy|,cx|)=stpfil$(cy|,cx|+1)
- NEXT cy|
- NEXT cx|
- ENDIF
- '
- IF ex_obj%=up_d_units|
- GOSUB update_unit_desc
- GOTO after_alt
- ENDIF
- '
- IF ex_obj%=up_adjust|
- adjitm|=stpitm|
- first_tim$=stpfil$(0,adjitm|)
- FOR cx|=adjitm| TO maxitems|
- EXIT IF stpfil$(0,cx|)="***"
- last_tim$=stpfil$(0,cx|)
- NEXT cx|
- redo_adjust:
- CLEARW 2
- CHAR{{OB_SPEC(adj_tim_adr%,adj_value|)}}="000000"
- OB_STATE(adj_tim_adr%,adj_plus|)=BSET(OB_STATE(adj_tim_adr%,adj_plus|),0)
- OB_STATE(adj_tim_adr%,adj_minus|)=BCLR(OB_STATE(adj_tim_adr%,adj_minus|),0)
- GOSUB gem_draw(adj_tim_adr%)
- '
- ' Back from display
- '
- adj_str_tim$=CHAR{{OB_SPEC(adj_tim_adr%,adj_value|)}}
- IF MID$(adj_str_tim$,1,2)>"23" OR MID$(adj_str_tim$,3,2)>"59" OR MID$(adj_str_tim$,5,2)>"59"
- ALERT 3,"Input error:|Hrs SB 0-23,min-sec SB 0-59",1,"RETURN",z|
- GOTO redo_adjust
- ENDIF
- IF BTST(OB_STATE(adj_tim_adr%,adj_plus|),0)
- IF VAL(adj_str_tim$)+VAL(last_tim$)>240000
- ALERT 3,"Input error,adjust time|would make last item|greater than 2400 hrs",1,"RETURN",z|
- GOTO redo_adjust
- ENDIF
- ELSE
- IF VAL(first_tim$)-VAL(adj_str_tim$)<0
- ALERT 3,"Input error,adjust time|would make time minus|value",1,"RETURN",z|
- GOTO redo_adjust
- ENDIF
- ENDIF
- adj_tot_sec%=VAL(MID$(adj_str_tim$,1,2))*3600
- ADD adj_tot_sec%,VAL(MID$(adj_str_tim$,3,2))*60
- ADD adj_tot_sec%,VAL(MID$(adj_str_tim$,5,2))
- FOR cx|=adjitm| TO maxitems|
- EXIT IF stpfil$(0,cx|)="***"
- wk_tot_sec%=(VAL(MID$(stpfil$(0,cx|),1,2)))*3600
- ADD wk_tot_sec%,(VAL(MID$(stpfil$(0,cx|),3,2)))*60
- ADD wk_tot_sec%,VAL(MID$(stpfil$(0,cx|),5,2))
- IF BTST(OB_STATE(adj_tim_adr%,adj_plus|),0)
- ADD wk_tot_sec%,adj_tot_sec%
- ELSE
- SUB wk_tot_sec%,adj_tot_sec%
- ENDIF
- GOSUB sec_to_clock
- stpfil$(0,cx|)=clock_work$
- NEXT cx|
- GOTO after_alt
- ENDIF
- RETURN
- PROCEDURE sec_to_clock
- adj_hrs|=TRUNC(wk_tot_sec%/3600)
- adj_mins|=TRUNC((MOD(wk_tot_sec%,3600))/60)
- adj_secs|=MOD(MOD(wk_tot_sec%,3600),60)
- clock_work$=""
- IF adj_hrs|>9
- clock_work$=STR$(adj_hrs|)
- ELSE
- clock_work$="0"+STR$(adj_hrs|)
- ENDIF
- IF adj_mins|>9
- clock_work$=clock_work$+STR$(adj_mins|)
- ELSE
- clock_work$=clock_work$+"0"+STR$(adj_mins|)
- ENDIF
- IF adj_secs|>9
- clock_work$=clock_work$+STR$(adj_secs|)
- ELSE
- clock_work$=clock_work$+"0"+STR$(adj_secs|)
- ENDIF
- RETURN
- PROCEDURE ready_x10
- ~XBIOS(rsconf|,baud|,flow|,ucr|,rsr%,tsr%,scr%)
- OPEN "U",#8,"aux:"
- ' clear x10 reply buffer area it accumulates until a request empties it
- frstx10:
- IF INP?(1)
- z|=INP(1)
- GOTO frstx10
- ENDIF
- RETURN
- PROCEDURE run_x10
- IF stpfil$(0,1)="***"
- ALERT 3,"No file created|or loaded, nothing|to run.",1,"RETURN",z|
- GOTO rreturn
- ENDIF
- GOSUB ready_x10
- GOSUB asktime ! Ask time only to be sure x10 online
- GOSUB x10ack ! sb FFFFFF1
- ARRAYFILL hsuntab%(),0
- no_steps|=1
- DO
- EXIT IF stpfil$(0,no_steps|)="***" ! end of table
- INC no_steps|
- LOOP
- DEC no_steps|
- fin_sec%=VAL(MID$(stpfil$(0,no_steps|),5,2))+60*VAL(MID$(stpfil$(0,no_steps|),3,2))+3600*VAL(MID$(stpfil$(0,no_steps|),1,2))
- start_sec%=TIMER/200
- CLEARW 2
- DEFTEXT 1,0,0,6
- TEXT 16,15*ry|,"Step Function Description"
- TEXT 250,65*ry|,"Time remaining"
- TEXT 100,90*ry|,"Step"
- TEXT 300,90*ry|,"Process"
- TEXT 200,115*ry|,"House and Unit(s)"
- TEXT 200,160*ry|," To abort enter a or A"
- DEFTEXT 1,0,0,32
- FOR cx|=1 TO no_steps|
- step_sec%=VAL(MID$(stpfil$(0,cx|),5,2))+60*VAL(MID$(stpfil$(0,cx|),3,2))+3600*VAL(MID$(stpfil$(0,cx|),1,2))
- '
- REPEAT
- z$=INKEY$
- IF UPPER$(z$)="A"
- DEFTEXT 1,0,0,13
- CLOSE #8
- GOSUB comend
- ENDIF
- curr_time%=TIMER/200-start_sec%
- IF cx|=1
- TEXT 96,45*ry|,"Waiting for first step!"
- ENDIF
- wk_tot_sec%=step_sec%-curr_time%
- IF wk_tot_sec%<0
- print_time$="PENDING "
- ELSE
- GOSUB sec_to_clock
- print_time$=MID$(clock_work$,1,2)+":"+MID$(clock_work$,3,2)+":"+MID$(clock_work$,5,2)
- ENDIF
- TEXT 140,95*ry|,print_time$
- wk_tot_sec%=fin_sec%-curr_time%
- IF wk_tot_sec%<0
- print_time$="FINISHED"
- ELSE
- GOSUB sec_to_clock
- ENDIF
- print_time$=MID$(clock_work$,1,2)+":"+MID$(clock_work$,3,2)+":"+MID$(clock_work$,5,2)
- ' TEXT 380,95*ry|,wk_tim_min$+":"+wk_tim_sec$
- TEXT 380,95*ry|,print_time$
- UNTIL curr_time%>step_sec%
- '
- '
- TEXT 16,45*ry|,STR$(cx|)
- TEXT 96,45*ry|,SPACE$(40) ! blank out funtion & desc
- TEXT 8,145*ry|,SPACE$(40) ! blank out house & units
- TEXT 232,45*ry|,stpfil$(6,cx|)
- IF stpfil$(1,cx|)="0"
- wkfunc$="Off"
- ELSE IF stpfil$(1,cx|)="1"
- wkfunc$="On"
- ELSE
- wkfunc$="D "+stpfil$(1,cx|)
- ENDIF
- TEXT 96,45*ry|,wkfunc$
- TEXT 150,145*ry|,stpfil$(2,cx|)+","+stpfil$(3,cx|)
- '
- ' ready and execute direct commands
- '
- x10cmnd|(17)=1 ! direct comand
- x10cmnd|(18)=funct|(VAL(stpfil$(1,cx|))) ! off ,on or dim
- x10cmnd|(19)=househex|((1+ASC(stpfil$(2,cx|))-ASC("A"))) ! housecode
- '
- ' get and insert unit codes
- '
- x10cmnd|(20)=0 ! set units 9 to 16 to zero
- x10cmnd|(21)=0 ! " 1 to 8 "
- '
- FOR cy|=1 TO 16
- IF MID$(stpfil$(3,cx|),cy|,1)<>"-"
- IF cy|>8
- x10cmnd|(20)=BSET(x10cmnd|(20),16-cy|)
- ELSE
- x10cmnd|(21)=BSET(x10cmnd|(21),8-cy|)
- ENDIF
- '
- ' fill house and unit table 0=off, 1=on or 2-16 on dim
- hsuntab|(1+(ASC(stpfil$(2,cx|))-ASC("A")),cy|)=VAL(stpfil$(1,cx|))
- ENDIF
- NEXT cy|
- '
- ' establish check sum
- '
- chksum%=0
- FOR cy|=18 TO 21
- chksum%=chksum%+x10cmnd|(cy|)
- NEXT cy|
- x10cmnd|(22)=MOD(chksum%,256)
- '
- x10cmlen|=22
- GOSUB x10cmnd
- x10lim|=7
- GOSUB x10reply
- GOSUB x10ack !sb FFFFFF1
- x10lim|=12
- GOSUB x10reply
- GOSUB x10ack !SB FFFFFF1 etc:
- GOSUB x10dirverify ! verify x10 sends same as received
- NEXT cx|
- DEFTEXT 1,0,0,13
- rreturn:
- CLOSE #8
- RETURN
- PROCEDURE x10cmnd
- FOR xx|=1 TO x10cmlen|
- OUT #8,x10cmnd|(xx|)
- NEXT xx|
- RETURN
- PROCEDURE x10reply
- startim%=TIMER
- xx|=1
- DO
- IF (TIMER-startim%)/200>10
- ALERT 3,"X10 module did not respond|within 10 seconds|no recovery.",1,"END|END",z|
- END
- ENDIF
- EXIT IF xx|>x10lim|
- IF INP?(1)
- x10reply|(xx|)=INP(1)
- INC xx|
- ENDIF
- LOOP
- RETURN
- PROCEDURE x10ack
- FOR xy|=1 TO 6 ! sb FFFFFF1
- IF x10reply|(xy|)<>255
- x10reply|(7)=0
- ENDIF
- NEXT xy|
- IF x10reply|(7)<>1
- ALERT 3,"X10 not responding|check connections|or power on ",1,"END",z|
- GOSUB final
- ENDIF
- RETURN
- PROCEDURE x10dirverify
- chksum%=0 ! is check sum correct ?
- FOR xx|=8 TO 11
- chksum%=chksum%+x10reply|(xx|)
- NEXT xx|
- IF MOD(chksum%,256)<>x10reply|(12)
- x10error:
- ALERT 3,"X10 not giving same|commands received.|NO RECOVERY",1,"END|END",z|
- GOSUB final
- ENDIF
- REM are unit codes correct
- IF x10cmnd|(20)<>x10reply|(9) OR x10cmnd|(21)<>x10reply|(10)
- GOTO x10error
- ENDIF
- REM see x10 manual for oddball on-off-base code conglomeration
- x10unit%=x10reply|(8) MOD 16
- x10base%=x10reply|(8)-x10unit%
- IF x10base%<0
- x10base%=0
- ENDIF
- IF x10base%<>x10cmnd|(19) !is base code same
- GOTO x10error
- ENDIF
- IF x10unit%<4 !x10 replies on&off codes same, returns 4 for all dim codes
- IF x10unit%<>x10cmnd|(18)
- GOTO x10error
- ENDIF
- ENDIF
- RETURN
- PROCEDURE asktime
- x10cmnd|(17)=4
- x10cmlen|=17
- GOSUB x10cmnd
- x10lim|=12
- GOSUB x10reply
- GOSUB x10ack
- svmi|=x10reply|(8)
- chksum%=x10reply|(8)
- svhr|=x10reply|(9)
- ADD chksum%,svhr|
- svday|=x10reply|(10)
- ADD chksum%,svday|
- svbase|=x10reply|(11)
- ADD chksum%,svbase|
- IF MOD(chksum%,256)<>x10reply|(12)
- ALERT 3,"X10 not returning|correct check sum",1,"END",z|
- GOSUB final
- ENDIF
- RETURN
- PROCEDURE base_code
- ALERT 3,"WARNING if base code|is changed all events|in X10 are erased,",1,"OKAY|RETURN",z|
- IF z|=2
- GOTO base_return
- ENDIF
- GOSUB ready_x10
- GOSUB asktime
- CLEARW 2
- FOR cx|=1 TO 16
- IF x10reply|(11)=househex|(cx|)
- OB_STATE(x10_base_adr%,x10_base_a|+(cx|-1))=BSET(OB_STATE(x10_base_adr%,x10_base_a|+(cx|-1)),0)
- ENDIF
- NEXT cx|
- GOSUB gem_draw(x10_base_adr%)
- x10cmnd|(17)=0
- FOR cx|=1 TO 16
- IF BTST(OB_STATE(x10_base_adr%,x10_base_a|+(cx|-1)),0)
- change_base|=househex|(cx|)
- ENDIF
- NEXT cx|
- IF x10reply|(11)=change_base|
- GOTO close_base
- ENDIF
- x10cmnd|(18)=change_base|
- x10cmlen|=18
- GOSUB x10cmnd
- x10lim|=7
- GOSUB x10reply
- GOSUB x10ack
- close_base:
- CLOSE #8
- base_return:
- RETURN
- PROCEDURE diagnostic
- CLEARW 2
- ALERT 3,"Diagnostic procedure|will erase stored|file in X10",1,"OKAY|RETURN",z|
- IF z|=2
- GOTO diag_return
- ENDIF
- BOX 223,148,404,258
- BOX 225,150,402,256
- PRINT AT(32,12);"Please wait while"
- PRINT AT(32,13);"X10 command module"
- PRINT AT(32,14);"is tested."
- GOSUB ready_x10
- GOSUB asktime
- x10cmnd|(17)=7
- x10cmlen|=17
- GOSUB x10cmnd
- PAUSE 50
- x10lim|=7
- GOSUB x10reply
- CLEARW 2
- IF x10reply|(7)=0
- ALERT 1,"X10 Passed analysis.",1,"RETURN",z|
- GOSUB sendclock ! Restore time to reset status bit after diag set to 0
- x10lim|=7
- GOSUB x10reply
- GOSUB sendclock ! must be done twice status still zero after 1st time
- x10lim|=7
- GOSUB x10reply
- GOSUB x10ack
- ELSE
- ALERT 3,"X10 Failed analysis",1,"RETURN",z|
- ENDIF
- CLOSE #8
- diag_return:
- RETURN
- PROCEDURE sendclock
- x10cmnd|(17)=2
- x10cmnd|(18)=svmi|
- x10cmnd|(19)=svhr|
- x10cmnd|(20)=svday|
- x10cmnd|(21)=svmi|+svhr|+svday|
- x10cmlen|=21
- GOSUB x10cmnd
- RETURN
- PROCEDURE print_steps
- IF stpfil$(0,1)="***"
- CLEARW 2
- ALERT 3,"No steps loaded or created.|Nothing available to print",1,"RETURN|END",z|
- IF z|=2
- GOSUB comend
- ELSE
- GOTO pretn
- ENDIF
- ENDIF
- GOSUB ready_printer
- IF print_ok|=0
- GOTO pretn
- ENDIF
- PRINT AT(2,4);"Enter file description."
- LINE INPUT a$
- PRINT #2,a$
- PRINT #2
- PRINT #2,"Step";" Description";TAB(26);"Time";TAB(35);"Func";TAB(40);"House & Units";TAB(60);"Sec";TAB(64);"Day"
- step|=1
- DO
- EXIT IF stpfil$(0,step|)="***"
- PRINT #2,TAB(1);step|;TAB(5);stpfil$(6,step|);TAB(26);MID$(stpfil$(0,step|),1,2);":";MID$(stpfil$(0,step|),3,2);":";MID$(stpfil$(0,step|),5,2);
- IF stpfil$(1,step|)="1"
- wk_func$="On"
- ELSE IF stpfil$(1,step|)="0"
- wk_func$="Off"
- ELSE
- wk_func$="D "+stpfil$(1,step|)
- ENDIF
- PRINT #2,TAB(35);wk_func$;TAB(40);stpfil$(2,step|);",";stpfil$(3,step|);TAB(61);stpfil$(4,step|);TAB(64);stpfil$(5,step|)
- INC step|
- LOOP
- CLOSE #2
- pretn:
- RETURN
- PROCEDURE file_analysis
- IF stpfil$(0,1)="***"
- ALERT 3,"No steps created or|loaded. Nothing |to analyze,",1,"RETURN",z|
- GOTO anreturn
- ENDIF
- ARRAYFILL hsuntab|(),0
- step|=1
- errstep|=1
- DO
- EXIT IF stpfil$(0,step|)="***"
- ansfil$(errstep|,5)=""
- housno|=1+ASC(stpfil$(2,step|))-ASC("A")
- FOR cy|=1 TO 16
- IF MID$(stpfil$(3,step|),cy|,1)<>"-"
- IF stpfil$(1,step|)="0" ! function is off
- IF hsuntab|(housno|,cy|)>0 ! unit was on normal situation
- hsuntab|(housno|,cy|)=0 ! set table off
- GOTO noerror
- ELSE
- ansfil$(errstep|,2)="1"
- ansfil$(errstep|,3)="0"
- GOTO rester
- ENDIF
- ELSE ! function is on
- IF hsuntab|(housno|,cy|)=0 ! table contained off normal
- hsuntab|(housno|,cy|)=step| ! save in table step turned on
- GOTO noerror
- ELSE
- ansfil$(errstep|,2)="2"
- ansfil$(errstep|,3)=STR$(hsuntab|(housno|,cy|))
- rester:
- ansfil$(errstep|,1)=STR$(step|)
- ansfil$(errstep|,4)=stpfil$(2,step|)
- ansfil$(errstep|,5)=ansfil$(errstep|,5)+STR$(cy|)+"-"
- ENDIF
- ENDIF
- noerror:
- ENDIF
- NEXT cy|
- IF LEN(ansfil$(errstep|,5))>1
- INC errstep|
- ENDIF
- INC step|
- EXIT IF errstep|>49
- LOOP
- '
- FOR cx|=1 TO 16
- FOR cy|=1 TO 16
- IF hsuntab|(cx|,cy|)<>0
- ansfil$(errstep|,1)=STR$(hsuntab|(cx|,cy|))
- ansfil$(errstep|,3)="0"
- ansfil$(errstep|,2)="3"
- ansfil$(errstep|,5)=STR$(cy|)
- ansfil$(errstep|,4)=CHR$(64+cx|)
- INC errstep|
- ENDIF
- EXIT IF errstep|>50
- NEXT cy|
- EXIT IF errstep|>50
- NEXT cx|
- IF errstep|>50
- ALERT 3,"More than 50 errors|analysis stopped",1,"CONTINUE",z|
- GOTO prntscrn
- ENDIF
- IF errstep|=1
- ALERT 1,"Good job !|no errors found.",1,"RETURN",z|
- GOTO anreturn
- ENDIF
- prntscrn:
- anlmsg2$=STR$(errstep|-1)+anlmsg1$
- ALERT 3,anlmsg2$,1,"PAPER|VIDEO",z|
- IF z|=1
- GOTO rdyprnt
- ELSE
- cy|=1
- dismorer:
- PRINT AT(2,1);" Step Err Prev House Unit(s)"
- PRINT AT(2,2);" code step"
- PRINT AT(2,18);anlmsg3$
- PRINT AT(2,19);anlmsg4$
- PRINT AT(2,20);anlmsg5$
- PRINT AT(1,3);" "
- FOR cx|=cy| TO cy|+11
- IF LEN(ansfil$(cx|,1))>1
- fpp|=5
- ELSE
- fpp|=6
- ENDIF
- IF LEN(ansfil$(cx|,3))>1
- spp|=16
- ELSE
- spp|=17
- ENDIF
- PRINT TAB(fpp|);ansfil$(cx|,1);TAB(12);ansfil$(cx|,2);TAB(spp|);ansfil$(cx|,3);TAB(23);ansfil$(cx|,4);TAB(29);ansfil$(cx|,5)
- NEXT cx|
- IF errstep|-cx|>0
- PRINT AT(2,16);"There are still ";errstep|-cx|;" error(s) remaining, after review press any key."
- REPEAT
- UNTIL INKEY$<>""
- CLEARW 2
- cy|=cx|
- GOTO dismorer
- ELSE
- PRINT AT(2,16);"Last of errors displayed, after review press any key,"
- REPEAT
- UNTIL INKEY$<>""
- GOTO anreturn
- ENDIF
- ENDIF
- rdyprnt:
- GOSUB ready_printer
- IF print_ok|=0
- GOTO anreturn
- ENDIF
- PRINT #2," Step Err Prev House Unit(s)"
- PRINT #2," code step"
- PRINT #2
- FOR cx|=1 TO errstep|-1
- IF LEN(ansfil$(cx|,1))>1
- fpp|=5
- ELSE
- fpp|=6
- ENDIF
- IF LEN(ansfil$(cx|,3))>1
- spp|=16
- ELSE
- spp|=17
- ENDIF
- PRINT #2,TAB(fpp|);ansfil$(cx|,1);TAB(12);ansfil$(cx|,2);TAB(spp|);ansfil$(cx|,3);TAB(23);ansfil$(cx|,4);TAB(29);ansfil$(cx|,5)
- NEXT cx|
- PRINT #2
- PRINT #2,anlmsg3$
- PRINT #2,anlmsg4$
- PRINT #2,anlmsg5$
- CLOSE #2
- anreturn:
- ARRAYFILL hsuntab|(),0
- RETURN
- PROCEDURE file_to_x10
- IF stpfil$(0,1)="***"
- ALERT 3,"No steps created| or loaded.| Fahampt?",1,"YES|END",z|
- IF z|=2
- GOSUB comend
- ELSE
- GOTO rreturn
- ENDIF
- ENDIF
- GOSUB ready_x10
- CLEARW 2
- GOSUB asktime
- '
- ' down load of base code erases all events in x10
- '
- x10cmlen|=18
- x10cmnd|(17)=0
- x10cmnd|(18)=svbase|
- GOSUB x10cmnd
- GOSUB sendclock ! Restore time to reset status bit after down load set to 0
- x10lim|=7
- GOSUB x10reply
- GOSUB sendclock ! must be done twice status still zero after 1st time
- x10lim|=7
- GOSUB x10reply
- GOSUB x10ack
- '
- '
- x10cmnd|(17)=3 ! download events
- FOR cx|=1 TO maxitems|
- PRINT AT(15,10);"Storing File to X10 Controller, Step No, ";cx|
- IF stpfil$(0,cx|)="***"
- GOTO bumpstor
- ENDIF
- x10cmnd|(18)=SHL|(cx|-1,3) ! step no
- x10cmnd|(19)=SHR|(cx|-1,5) ! step no
- x10cmnd|(20)=0
- x10cmlen|=20
- IF stpfil$(4,cx|)="Y"
- x10cmnd|(20)=9 ! security mode
- ELSE
- x10cmnd|(20)=8 ! normal mode
- ENDIF
- x10cmnd|(21)=0
- FOR cy|=1 TO 7
- IF MID$(stpfil$(5,cx|),cy|,1)<>"-"
- x10cmnd|(21)=x10cmnd|(21)+dayhex|(cy|-1)
- ENDIF
- NEXT cy|
- x10cmnd|(22)=VAL(MID$(stpfil$(0,cx|),1,2))
- x10cmnd|(23)=VAL(MID$(stpfil$(0,cx|),3,2))
- x10cmnd|(24)=0
- x10cmnd|(25)=0
- FOR cy|=1 TO 16
- IF MID$(stpfil$(3,cx|),cy|,1)<>"-"
- IF cy|>8
- x10cmnd|(25)=BSET(x10cmnd|(25),16-cy|)
- ELSE
- x10cmnd|(24)=BSET(x10cmnd|(24),8-cy|)
- ENDIF
- ENDIF
- NEXT cy|
- x10cmnd|(26)=househex|((1+ASC(stpfil$(2,cx|))-ASC("A")))
- x10cmnd|(27)=funct|(VAL(stpfil$(1,cx|)))
- '
- ' get check sum
- '
- chksum%=0
- FOR cy|=20 TO 27
- chksum%=chksum%+x10cmnd|(cy|)
- NEXT cy|
- x10cmnd|(28)=MOD(chksum#,256)
- x10cmlen|=28
- GOSUB x10cmnd
- PAUSE 50
- bumpstor:
- NEXT cx|
- CLOSE #8
- RETURN
- PROCEDURE set_x10_clock
- GOSUB ready_x10
- GOSUB asktime
- '
- ' Set all buttons off
- '
- FOR cx|=0 TO 6
- OB_STATE(x10_clock_adr%,x10_clk_sun|+cx|)=BCLR(OB_STATE(x10_clock_adr%,x10_clk_sun|+cx|),0)
- NEXT cx|
- '
- wk_time$=STR$(svhr|)
- IF LEN(wk_time$)=1
- wk_time$="0"+wk_time$
- ENDIF
- wk_min$=STR$(svmi|)
- IF LEN(wk_min$)=1
- wk_min$="0"+wk_min$
- ENDIF
- wk_time$=wk_time$+wk_min$
- CHAR{{OB_SPEC(x10_clock_adr%,x10_clk_tim|)}}=wk_time$
- FOR cx|=0 TO 6
- IF svday|=dayhex|(cx|)
- OB_STATE(x10_clock_adr%,x10_clk_sun|+cx|)=BSET(OB_STATE(x10_clock_adr%,x10_clk_sun|+cx|),0)
- ENDIF
- NEXT cx|
- CLEARW 2
- redraw_anal:
- GOSUB gem_draw(x10_clock_adr%)
- temp_time$=CHAR{{OB_SPEC(x10_clock_adr%,x10_clk_tim|)}}
- IF MID$(temp_time$,1,2)>"23" OR MID$(temp_time$,3,2)>"59"
- ALERT 3,"24 hour clock|highest allowable is:|23:59",0,"OK",z|
- GOTO redraw_anal
- ENDIF
- IF temp_time$<>wk_time$
- clock_up|=1
- svhr|=VAL(MID$(temp_time$,1,2))
- svmi|=VAL(MID$(temp_time$,3,2))
- ENDIF
- FOR cx|=0 TO 6
- IF BTST(OB_STATE(x10_clock_adr%,x10_clk_sun|+cx|),0)
- temp_hex|=dayhex|(cx|)
- IF temp_hex|<>svday|
- clock_up|=1
- svday|=temp_hex|
- ENDIF
- ENDIF
- NEXT cx|
- IF clock_up|=1
- clock_up|=0
- GOSUB sendclock
- x10lim|=7
- GOSUB x10reply
- GOSUB x10ack
- ENDIF
- CLOSE #8
- RETURN
- PROCEDURE direct_commands
- GOSUB ready_x10
- '
- ' set all buttons off
- '
- OB_STATE(x10_direct_adr%,x10_dir_func_off|)=BCLR(OB_STATE(x10_direct_adr%,x10_dir_func_off|),0)
- FOR cx|=0 TO 15
- OB_STATE(x10_direct_adr%,x10_dir_hous_a|+cx|)=BCLR(OB_STATE(x10_direct_adr%,x10_dir_hous_a|+cx|),0)
- OB_STATE(x10_direct_adr%,x10_dir_unit_1|+cx|)=BCLR(OB_STATE(x10_direct_adr%,x10_dir_unit_1|+cx|),0)
- OB_STATE(x10_direct_adr%,x10_dir_func_on|+cx|)=BCLR(OB_STATE(x10_direct_adr%,x10_dir_func_on|+cx|),0)
- NEXT cx|
- '
- ' set default
- OB_STATE(x10_direct_adr%,x10_dir_hous_a|)=BSET(OB_STATE(x10_direct_adr%,x10_dir_hous_a|),0)
- OB_STATE(x10_direct_adr%,x10_dir_unit_1|)=BSET(OB_STATE(x10_direct_adr%,x10_dir_unit_1|),0)
- OB_STATE(x10_direct_adr%,x10_dir_func_on|)=BSET(OB_STATE(x10_direct_adr%,x10_dir_func_on|),0)
- '
- display_direct:
- CLEARW 2
- GOSUB gem_draw(x10_direct_adr%)
- '
- '
- IF ex_obj%=x10_dir_display_unit|
- GOSUB update_unit_desc
- GOTO display_direct
- ENDIF
- '
- '
- IF ex_obj%=x10_dir_execute|
- '
- ' ready and execute direct commands
- '
- FOR cx|=18 TO 22
- x10cmnd|(cx|)=0
- NEXT cx|
- x10cmnd|(17)=1 ! direct comand
- FOR cx|=0 TO 16
- IF BTST(OB_STATE(x10_direct_adr%,x10_dir_func_on|+cx|-1),0)
- x10cmnd|(18)=funct|(cx|)
- ENDIF
- NEXT cx|
- FOR cx|=1 TO 16
- IF BTST(OB_STATE(x10_direct_adr%,x10_dir_hous_a|+cx|-1),0)
- x10cmnd|(19)=househex|(cx|) ! housecode
- ENDIF
- NEXT cx|
- '
- ' get and insert unit codes
- '
- FOR cx|=1 TO 8
- IF BTST(OB_STATE(x10_direct_adr%,x10_dir_unit_1|+cx|-1),0)
- x10cmnd|(21)=BSET(x10cmnd|(21),8-cx|)
- ENDIF
- IF BTST(OB_STATE(x10_direct_adr%,x10_dir_unit_9|+cx|-1),0)
- x10cmnd|(20)=BSET(x10cmnd|(20),8-cx|)
- ENDIF
- NEXT cx|
- '
- IF x10cmnd|(20)=0 AND x10cmnd|(21)=0
- ALERT 3,"Some unit must|be selected",1,"RETRY",z|
- GOTO display_direct
- ELSE
- '
- ' establish check sum
- '
- chksum%=0
- FOR cx|=18 TO 21
- chksum%=chksum%+x10cmnd|(cx|)
- NEXT cx|
- x10cmnd|(22)=MOD(chksum%,256)
- '
- x10cmlen|=22
- GOSUB x10cmnd
- x10lim|=7
- GOSUB x10reply
- GOSUB x10ack !sb FFFFFF1
- x10lim|=12
- GOSUB x10reply
- GOSUB x10ack !SB FFFFFF1 etc:
- GOSUB x10dirverify ! verify x10 sends same as received
- GOTO display_direct
- ENDIF
- ENDIF
- CLOSE #8
- RETURN
- PROCEDURE x10_print
- GOSUB ready_printer
- IF print_ok|=0
- GOTO no_prnt_x10
- ENDIF
- GOSUB ready_x10
- GOSUB asktime
- x10cmnd|(17)=5
- x10cmlen|=17
- GOSUB x10cmnd
- PAUSE 250
- GOSUB long_reply
- CLEARW 2
- PRINT AT(2,4);"Enter file description."
- LINE INPUT a$
- PRINT #2,a$
- PRINT #2
- FOR cx|=0 TO 6
- IF svday|=dayhex|(cx|)
- fdday$=daystr$(cx|)
- ENDIF
- NEXT cx|
- FOR cx|=1 TO 16
- IF svbase|=househex|(cx|)
- fdbase$=CHR$(ASC("A")+(cx|-1))
- ENDIF
- NEXT cx|
- PRINT #2,"X10 Memory - File contents";" Time ";svhr|;":";svmi|;" Day ";fdday$;" Base Code ";fdbase$
- PRINT #2
- PRINT #2,"Step";" Time";TAB(12);"Func";TAB(18);"House & Units";TAB(39);"Sec";TAB(44);"Day"
- PRINT
- PRINT
- chksum%=0
- pstep|=1
- FOR cx%=8 TO xx%-2
- IF x10reply|(cx%)=255
- GOTO bumpw
- ENDIF
- FOR cy|=0 TO 7
- upfld$(cy|)=""
- NEXT cy|
- '
- ' get mode
- ADD chksum%,x10reply|(cx%)
- IF x10reply|(cx%)=8
- upfld$(0)="N"
- ELSE IF x10reply|(cx%)=9
- upfld$(0)="Y"
- ENDIF
- IF x10reply|(cx%+1)>127
- GOTO x10pfilhrs
- ENDIF
- '
- ' get days
- '
- ADD chksum%,x10reply|(cx%+1)
- upfld$(1)="-------"
- FOR cy|=0 TO 5
- IF BTST(x10reply|(cx%+1),cy|)
- MID$(upfld$(1),cy|+2,1)=LEFT$(daystr$(cy|+1))
- ENDIF
- NEXT cy|
- IF BTST(x10reply|(cx%+1),6)
- MID$(upfld$(1),1,1)=LEFT$(daystr$(0))
- ENDIF
- '
- x10pfilhrs:
- '
- ' decode time hrs
- '
- ADD chksum%,x10reply|(cx%+2)
- IF x10reply|(cx%+2)>23
- GOTO x10pfilmins
- ENDIF
- upfld$(2)=STR$(x10reply|(cx%+2))
- IF LEN(upfld$(2))<2
- upfld$(2)="0"+upfld$(2)
- ENDIF
- x10pfilmins:
- '
- ' decode time mins
- '
- ADD chksum%,x10reply|(cx%+3)
- IF x10reply|(cx%+3)>59
- GOTO x10pfilun1
- ENDIF
- upfld$(3)=STR$(x10reply|(cx%+3))
- IF LEN(upfld$(3))<2
- upfld$(3)="0"+upfld$(3)
- ENDIF
- x10pfilun1:
- '
- ' decode units 1 - 8
- '
- ADD chksum%,x10reply|(cx%+4)
- FOR cy|=0 TO 7
- IF BTST(x10reply|(cx%+4),cy|)
- upfld$(4)=STR$(8-cy|)+upfld$(4)
- ELSE
- upfld$(4)="-"+upfld$(4)
- ENDIF
- NEXT cy|
- '
- ' decode units 9 - 16
- '
- ADD chksum%,x10reply|(cx%+5)
- FOR cy|=0 TO 7
- IF BTST(x10reply|(cx%+5),cy|)
- wkupfld$=STR$(16-cy|)
- wkupfld$=RIGHT$(wkupfld$,1)
- upfld$(5)=wkupfld$+upfld$(5)
- ELSE
- upfld$(5)="-"+upfld$(5)
- ENDIF
- NEXT cy|
- '
- ' decode house
- '
- ADD chksum%,x10reply|(cx%+6)
- FOR cy|=1 TO 16
- IF x10reply|(cx%+6)=househex|(cy|)
- upfld$(6)=CHR$(ASC("A")+(cy|-1))
- ENDIF
- NEXT cy|
- '
- ' decode function
- '
- ADD chksum%,x10reply|(cx%+7)
- IF x10reply|(cx%+7)=2
- upfld$(7)="ON"
- ELSE IF x10reply|(cx%+7)=3
- upfld$(7)="OFF"
- ENDIF
- FOR cy|=2 TO 16
- IF x10reply|(cx%+7)=funct|(cy|)
- upfld$(7)="D-"+STR$(cy|)
- ENDIF
- NEXT cy|
- ADD cx%,7
- FOR cy|=0 TO 7
- IF upfld$(cy|)=""
- x10fderr|=1
- ENDIF
- NEXT cy|
- IF x10fderr|=0
- PRINT #2;pstep|;TAB(5);upfld$(2);TAB(8);upfld$(3);TAB(12);upfld$(7);TAB(18);upfld$(6);",";upfld$(4);upfld$(5);TAB(40);upfld$(0);TAB(44);upfld$(1)
- ENDIF
- bumpw:
- ADD pstep|,1
- NEXT cx%
- PRINT
- IF x10fderr|=1
- ALERT 3,"Meaningless Data|maybe X10 Analysis|was just done.",1,"RETURN",z|
- x10fderr|=0
- GOTO prx10freturn
- ENDIF
- IF x10reply|(xx%-1)<>MOD(chksum%,256)
- ALERT 3,"X10 Data does not|add up to check|sum.",1,"RETURN|END",z|
- IF z|=2
- CLOSE #2
- CLOSE #8
- GOSUB final
- ENDIF
- ENDIF
- prx10freturn:
- CLOSE #2
- CLOSE #8
- no_prnt_x10:
- RETURN
- PROCEDURE long_reply
- xx%=1
- strt_x10lrg:
- IF INP?(1)
- x10reply|(xx%)=INP(1)
- INC xx%
- GOTO strt_x10lrg
- ENDIF
- RETURN
- PROCEDURE ready_printer
- OPEN "O",#2,"LST:"
- retry_print:
- IF GEMDOS(17)
- print_ok|=1
- ELSE
- print_ok|=0
- ALERT 3,"Printer not|responding!",1,"RETRY|RETURN",z|
- IF z|=1
- GOTO retry_print
- ELSE
- CLOSE #2
- ENDIF
- ENDIF
- RETURN
- PROCEDURE update_unit_desc
- CLEARW 2
- house_pointer%=0
- reform_house_unit:
- CHAR{{OB_SPEC(unit_desc_adr%,ud_house|)}}=CHR$(ASC("A")+house_pointer%)
- CHAR{{OB_SPEC(unit_desc_adr%,ud_house_desc|)}}=unit_desc$(0,house_pointer%)
- FOR cx%=0 TO 15
- CHAR{{OB_SPEC(unit_desc_adr%,ud_unit_desc1|+cx%)}}=unit_desc$(cx%+1,house_pointer%)
- NEXT cx%
- GOSUB gem_draw(unit_desc_adr%)
- IF CHAR{{OB_SPEC(unit_desc_adr%,ud_house_desc|)}}="_________________________"
- unit_desc$(0,house_pointer%)=""
- ELSE
- updat|=1
- unit_desc$(0,house_pointer%)=CHAR{{OB_SPEC(unit_desc_adr%,ud_house_desc|)}}
- ENDIF
- FOR cx%=0 TO 15
- IF CHAR{{OB_SPEC(unit_desc_adr%,ud_unit_desc1|+cx%)}}="__________________________"
- unit_desc$(cx%+1,house_pointer%)=""
- ELSE
- updat|=1
- unit_desc$(cx%+1,house_pointer%)=CHAR{{OB_SPEC(unit_desc_adr%,ud_unit_desc1|+cx%)}}
- ENDIF
- NEXT cx%
- IF ex_obj%=ud_house_up|
- INC house_pointer%
- IF house_pointer%>15
- house_pointer%=15
- ENDIF
- GOTO reform_house_unit
- ENDIF
- IF ex_obj%=ud_house_prev|
- DEC house_pointer%
- IF house_pointer%<0
- house_pointer%=0
- ENDIF
- GOTO reform_house_unit
- ENDIF
- '
- RETURN
- PROCEDURE print_units
- GOSUB ready_printer
- IF print_ok|=1
- FOR cx|=0 TO 15
- FOR cy|=1 TO 16
- IF unit_desc$(cy|,cx|)<>""
- IF tab_amt|=0
- PRINT #2
- PRINT #2;TAB(25);"House ";CHR$(ASC("A")+cx|);'unit_desc$(0,cx|)
- PRINT #2
- tab_amt|=1
- ENDIF
- IF tab_amt|>40
- tab_amt|=1
- PRINT #2
- ENDIF
- PRINT #2;TAB(tab_amt|);"Unit # ";cy|;'unit_desc$(cy|,cx|);
- ADD tab_amt|,39
- ENDIF
- NEXT cy|
- IF tab_amt|>0
- PRINT #2
- tab_amt|=0
- ENDIF
- NEXT cx|
- CLOSE #2
- ENDIF
- RETURN
- PROCEDURE comend
- FOR cx|=1 TO 16
- FOR cy|=1 TO 16
- IF hsuntab|(cx|,cy|)<>0
- onunsw|=1
- onunit$(cx|)=onunit$(cx|)+STR$(cy|)+"-"
- ENDIF
- NEXT cy|
- NEXT cx|
- IF onunsw|=1
- GOSUB ready_x10
- CLEARW 2
- ALERT 3,"Program has left some|units in on status|END will turn all off",1,"END|REVIEW",z|
- IF z|=2
- CLEARW 2
- PRINT AT(5,2);" Below are the units that were left on by program. After review, "
- PRINT AT(5,3);"press any key to turn them all off."
- cy|=1
- FOR cx|=1 TO 16
- IF LEN(onunit$(cx|))>0
- PRINT AT(10,cy|+5);"HOUSE";'CHR$(64+cx|);'"UNIT(S)";'onunit$(cx|)
- INC cy|
- ENDIF
- NEXT cx|
- REPEAT
- z$=INKEY$
- UNTIL z$<>""
- ENDIF
- FOR cx|=1 TO 16
- IF LEN(onunit$(cx|))>0
- x10cmnd|(17)=1
- x10cmnd|(18)=3
- x10cmnd|(19)=househex|(cx|)
- x10cmnd|(20)=0
- x10cmnd|(21)=0
- FOR cy|=1 TO 16
- IF hsuntab|(cx|,cy|)<>0
- IF cy|>8
- x10cmnd|(20)=BSET(x10cmnd|(20),16-cy|)
- ELSE
- x10cmnd|(21)=BSET(x10cmnd|(21),8-cy|)
- ENDIF
- ENDIF
- NEXT cy|
- chksum%=0
- FOR cy|=18 TO 21
- chksum%=chksum%+x10cmnd|(cy|)
- NEXT cy|
- x10cmnd|(22)=MOD(chksum%,256)
- x10cmlen|=22
- GOSUB x10cmnd
- x10lim|=7
- GOSUB x10reply
- GOSUB x10ack
- x10lim|=12
- GOSUB x10reply
- GOSUB x10ack
- GOSUB x10dirverify
- ENDIF
- NEXT cx|
- CLOSE #8
- ENDIF
- GOSUB final
- RETURN
- PROCEDURE gem_draw(VAR tree_addr%)
- ~FORM_CENTER(tree_addr%,x%,y%,w%,h%)
- ~OBJC_DRAW(tree_addr%,0,8,x%,y%,w%,h%)
- ex_obj%=FORM_DO(tree_addr%,0)
- ~OBJC_CHANGE(tree_addr%,ex_obj%,0,x%,y%,w%,h%,0,0)
- RETURN
- PROCEDURE final
- ~MENU_BAR(menu_adr%,0)
- ~RSRC_FREE()
- RESERVE FRE(0)+16000
- END
- RETURN
-